home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 4 / Amiga Tools 4.iso / grafix / raytracing / raylab / source / platform / generic / generic.c next >
C/C++ Source or Header  |  1996-01-06  |  441b  |  39 lines

  1. /*
  2.     name:    generic.c
  3.  
  4.     Generic display routines (none!)
  5.     --------------------------------
  6.  
  7. */
  8.  
  9.  
  10. #include  <stdio.h>
  11.  
  12. #include  "defs.h"
  13. #include  "extern.h"
  14.  
  15.  
  16. #define DISPLAY_NONE 0
  17.  
  18.  
  19. long OpenDisplay(long DisplayType)
  20. {
  21.     if(DisplayType!=DISPLAY_NONE) {
  22.         fprintf(stderr,"Warning: Unsupported display type (%d)\n",DisplayType);
  23.     }
  24.  
  25.     return(0L);
  26. }
  27.  
  28.  
  29. void CloseDisplay(void)
  30. {
  31.  
  32. }
  33.  
  34.  
  35. void DisplayPlot(int x, int y, unsigned char RGBColor[])
  36. {
  37.  
  38. }
  39.